home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / EDITORS / VI / VIM / SOURCE / vim / todo < prev    next >
Text File  |  1992-08-04  |  7KB  |  130 lines

  1. Known problems:
  2.  
  3. None at the moment!
  4.  
  5.  
  6. Problems that will probably not be solved:
  7.  
  8. Setting the size of the window with ":win" does not always work as expected.
  9. Amiga: When using quickfix with the Manx compiler we only get the first 25
  10.     errors. How do we get the rest?
  11. Amiga: The ":cq" command does not always abort the Manx compiler. Why?
  12.  
  13.  
  14. Further extentions:
  15.  
  16. In visual select mode: Inclusion or exclusion of char under cursor depends
  17.     on movement command. "vwd" and "dw" do the same.
  18. Find out why macros of Stephen Riehm are working strange.
  19. :s///p prints the line after a substitution.
  20. When using the up/down cursor keys in insertmode keep the same column.
  21. Make CTRL-R (insert register contents) also work in command line mode.
  22. Updatescript() can be done faster with a string instead of a char.
  23. With :args, when there is only one line, don't call wait_return().
  24. Add arguments to ":args", like ":next".
  25. When 'wrapscan' off give message "search hit BOTTOM without matching pattern".
  26. When 'wrapscan' on give message "search hit BOTTOM, continuing at TOP".
  27. Add \! to search patterns: matches string that does not match previous atom.
  28. Screen updating is inefficient with CTRL-F and CTRL-B when there are long lines.
  29. Add last inserted text to :display.
  30. Make z<nr><CR> more useful: put ruler and command on bottom line, reserve
  31.     more space for command line and messages (less need for hitreturn).
  32. Use 'backupdir' for all backup files? (Caughey)
  33. Use CTRL-E and CTRL-Y in insert mode for scroll up/down?
  34. When undone all changes reset the Changed flag.
  35. Uppercase characters in ex commands can be made lowercase?
  36. Add t_del, code for delete key (termcap 'kD') and maybe some other keys:
  37.     'kI' insert key, 'kL' delete line, etc.
  38. CTRL-V > should move the block, not whole lines.
  39. Filtering a block should only apply to the block, not to the whole lines. When
  40.     the number of lines is increased, add lines. When decreased, padd with
  41.     spaces or delete?
  42. In out-of-memory situations: Free allocated space in undo (after asking).
  43. With '#' and '*' commands: search whole words only (using \< and \>)?
  44. 8-bit codes between 0x80 and 0xa0 cannot be typed directly (mostly msdos
  45.     problem). Need more codes for delete key and more function keys. Use
  46.     2-byte code?
  47. Insert octal numbers with CTRL-V o, hexadecimal with CTRL-V x and binary
  48.     with CTRL-V b.
  49. List mappings: Once with and without ^ and ~ (meta keys)
  50. If ':' hit after "hit return to continue" no screen redraw required.
  51. Add option that tells which characters to display directly, e.g.
  52.     ":set gr=32-126,140-244", others are displayed with ^ and ~ and +
  53. Add option to show character value in octal, decimal, hex and screen code.
  54. How does vi detect whether a filter has messed up the screen? Check source.
  55.     After ":w !command" a wait_return?
  56. With 'p' command on last line: scroll screen up (also for terminals without
  57.     insert line command).
  58. Amiga: ExpandWildCards in amiga.c: don't expand if there are no wildcards.
  59. unix: Speedup wildcard expansion of "*", "~" and "$": do it internally, more
  60.     complicated things can still be done with the shell.
  61. Only do wildcard expansion with 'wildchar' when entering a command that has a
  62.     file name as argument (:r :w :! :e :f :n)?
  63. In regexp.c: "\^" after "\|" or "\(" is start of line, and "\$" before "\|"
  64.     and "\)" is end of line.
  65. Remember the "last changed" time of the edited file and check it before
  66.     overwriting; another user may have changed it.
  67. Support for command lines longer than 256 characters (for EXINIT).
  68. Option for filter when reading/writing a file for compression or crypting.
  69. Option to set time for emsg() sleep.
  70. Make adjustmark() faster (sorted list of pointers? Hash list?)
  71. Add "next tag" command for tags that have multiple hits.
  72. Support static tags: first search for tags with current filename: "foo.c:bar",
  73.     then for global tags (without a filename).
  74. History stack for . command?
  75. With CTRL-^ command swap the two entries at the top of the file list. Put filename
  76.     in the list only if it is not already there???
  77. Use insert/delete char when terminal supports it.
  78. With undo with simple line delete/insert: optimize screen updating.
  79. Optimize screen redraw for slow terminals.
  80. "edit" option: when off changing the buffer is not possible.
  81. Add "-d null" for editing from a script file without displaying.
  82. MSDOS: search for _exrc in the directory where the binary is, instead
  83.     of using $VIM\_exrc.
  84. In insert mode: Remember the characters that were removed with backspace and
  85.     re-insert them one at a time with <key1>, all together with <key2>.
  86. Amiga: Add possibility to set a keymap. The code in amiga.c does not work yet.
  87. Implement 'redraw' option.
  88. Add possibility to put the value of an option into the text: "'lines'p
  89. Add 'crown' option to 'Q' command: preserve indent of second line.
  90. Unix: WildExpand: Without csh file name with embedded space will be split in two.
  91. Add special code to 'sections' option to define something else but '{' or '}'
  92.     as the start of a section (e.g. one shiftwidth to the right).
  93. Nopaste option: Mappings with non-printable characters are OK.
  94. Add 'indent' option: Always use this amount of indent when starting a new line
  95.     and when formatting text.
  96. Add option 'comment', initally "/*,*,*/,#", giving the characters at start of
  97.     a line that should be left alone by the internal formatting.
  98. Add 'scrolloff': scroll when cursor is less then 'scrolloff' lines from top/bottom.
  99. Add option to switch off ignoring braces inside quotes for "%" command??
  100. Use pipes for filtering on unix.
  101. Allow for +command and -option on any position in argv[].
  102. With CTRL-O commands in insert mode: Allow to go to after last char in line.
  103. Add commands like ]] and [[ that do not include the line jumped to.
  104.  
  105. From Elvis:
  106. fontchanges recognized "\\fB" etc.
  107. :color command
  108. :if and friends, conditional statements
  109. Change cursor shape in command/insert mode.
  110.  
  111.  
  112. Far future extentions:
  113.  
  114. MSdos: use extended or expanded memory.
  115. Use disk swap file when editing very large files.
  116. When executing macro's: Save each line for undo only once.
  117. Smart cut/paste: recognize words and adjust spaces before/after them.
  118. Add 'notwsuffixes' option: suffixes for files where 'tw' should be 0.
  119. Keyword completion: first look in the file for a match, then in a dictionary.
  120. Support mouse control.
  121. Support multiple windows (like xvi or emacs)
  122. Option verbose; when on keep the screen uptodate, when off only redisplay when
  123.     input needed.
  124. Remember message line for redraw. Integrate the command line in updateScreen().
  125. Mode to keep text formatted while inserting/deleting.
  126. Mode to keep C-code formatted (sort of on-line indent). Use colors for
  127.     keywords, comments, etc.
  128. Korn-shell like command line editing (like editing a single line with vi). Use
  129.     :cmap! for mappings.
  130.